Closed LouisCAD closed 8 years ago
Hi!
I spotted formatting issues in the codelab!
On this page (maybe other pages too), you can notice multiple places where it's written this:
call .nameOfTheAwesomeMethod()
nameOfTheAwesomeMethod()
instead of this:
.nameOfTheAwesomeMethod()
The dot is misplaced, and may mislead readers, thinking it's the end of the sentence, while it's a method call dot.
Fixed! https://codelabs.developers.google.com/codelabs/android-agera/index.html?index=..%2F..%2Findex#7
Hi!
I spotted formatting issues in the codelab!
On this page (maybe other pages too), you can notice multiple places where it's written this:
call .
nameOfTheAwesomeMethod()
instead of this:
call
.nameOfTheAwesomeMethod()
The dot is misplaced, and may mislead readers, thinking it's the end of the sentence, while it's a method call dot.