From 18fb63167b2923a7e96255893f5357d5186cd23f Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Wed, 18 May 2016 11:35:00 -0400 Subject: Removed trailing whitespace --- docs/layout-of-source-files.rst | 12 ++++++------ docs/units-and-global-variables.rst | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/layout-of-source-files.rst b/docs/layout-of-source-files.rst index 7033a062..5b81b0e8 100644 --- a/docs/layout-of-source-files.rst +++ b/docs/layout-of-source-files.rst @@ -21,7 +21,7 @@ At a global level, you can use import statements of the following form: import "filename"; -...will import all global symbols from "filename" (and symbols imported there) into the +...will import all global symbols from "filename" (and symbols imported there) into the current global scope (different than in ES6 but backwards-compatible for Solidity). :: @@ -122,18 +122,18 @@ Single-line comments (`//`) and multi-line comments (`/*...*/`) are possible. :: // This is a single-line comment. - + /* - This is a + This is a multi-line comment. */ - + Additionally, there is another type of comment called a natspec comment, for which the documentation is not yet written. They are written with a triple slash (`///`) or a double asterisk block(`/** ... */`) and -they should be used directly above function declarations or statements. +they should be used directly above function declarations or statements. You can use Doxygen-style tags inside these comments to document -functions, annotate conditions for formal verification, and provide a +functions, annotate conditions for formal verification, and provide a **confirmation text** which is shown to users when they attempt to invoke a function. diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 141c4a3c..05fb4b3c 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -118,7 +118,7 @@ Contract Related `this` (current contract's type): the current contract, explicitly convertible to :ref:`address` - + `selfdestruct(address)`: destroy the current contract, sending its funds to the given :ref:`address` -- cgit v1.2.3