You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
6. Always provide `@param`, `@return`, `@throws`, `@since` declarations in that order.
619
619
620
-
7. There must be a blank comment line between each JavaDoc tag (`@param`, `@return` et al) declaration except between `@author` and `@since`.
620
+
7. There must be a blank comment line between each JavaDoc tag (`@param`, `@return` et al.) declaration except between `@author` and `@since`.
621
621
622
622
8. Align `@param` declaration descriptions.
623
623
@@ -752,7 +752,7 @@ Consumer<String> charPrinter = s ->
752
752
}
753
753
```
754
754
755
-
3. The parentheses should be used around lambda arguments only if required by the Java compiler (ie. when there are two or more arguments).
755
+
3. The parentheses should be used around lambda arguments only if required by the Java compiler (i.e. when there are two or more arguments).
756
756
757
757
4. The nesting of lambdas should be avoided, not only because it creates a [Pyramid of Doom](https://en.wikipedia.org/wiki/Pyramid_of_doom_(programming)), but more importantly because it makes inner lambdas non-remotable, thus breaking the support for remoting of outer lambdas as well.
758
758
@@ -813,8 +813,8 @@ The annotation is recommended when:
813
813
814
814
The annotation is not recommended when:
815
815
816
-
* It is obvious that a method is being overridden (forexampletoString, equals, etc)
817
-
* Implementing common interfaces (forexample `Map.put`, `Map.get`, etc)
816
+
* It is obvious that a method is being overridden (forexampletoString, equals, etc.)
817
+
* Implementing common interfaces (forexample `Map.put`, `Map.get`, etc.)
818
818
* A class that is implementing a single interface
819
819
* Anonymous classes
820
820
@@ -879,7 +879,7 @@ TDE is an entire development environment, IDE + ([bootstrapping](https://en.wiki
879
879
880
880
## IDEKeyboard shortcuts
881
881
882
-
| Key stroke | Descritpion |
882
+
| Key stroke | Description |
883
883
|------------|-------------|
884
884
|Ctrl-A, Command-A|Select all.|
885
885
|Ctrl-B, Command-B|Go to a method declaration. works only within a scope of a single component.|
0 commit comments