diff options
author | Eric Roberts <eric@cryode.com> | 2012-02-01 03:12:35 +0100 |
---|---|---|
committer | Eric Roberts <eric@cryode.com> | 2012-02-01 03:12:35 +0100 |
commit | 0760a48d431fb9ab85f2a0ca9af63aa131e29520 (patch) | |
tree | bc5bdc251c51646e9f0a101fb51c259b3edbc2d5 /user_guide_src/source/general/styleguide.rst | |
parent | 4d4dcae1ff484dad539bc5649cf66e39c3944960 (diff) | |
parent | 0c4fb6a578d23e5a0fa5c8ce41a75d2b2b1310e7 (diff) |
Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into feature/form_error_msgs
Diffstat (limited to 'user_guide_src/source/general/styleguide.rst')
-rw-r--r-- | user_guide_src/source/general/styleguide.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/user_guide_src/source/general/styleguide.rst b/user_guide_src/source/general/styleguide.rst index b3dc08871..d8bdd0531 100644 --- a/user_guide_src/source/general/styleguide.rst +++ b/user_guide_src/source/general/styleguide.rst @@ -441,6 +441,13 @@ same level as the control statement that "owns" them. // ... } } + + try { + // ... + } + catch() { + // ... + } **CORRECT**:: @@ -470,6 +477,15 @@ same level as the control statement that "owns" them. // ... } } + + try + { + // ... + } + catch() + { + // ... + } Bracket and Parenthetic Spacing =============================== |