Whitney Martinez 8 лет назад
Родитель
Сommit
676af9ddca
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      StringParser.java

+ 1
- 1
StringParser.java Просмотреть файл

66
         // substring has a beginning index and end index
66
         // substring has a beginning index and end index
67
         // if one doesn't put the end index it'll return the rest of the words
67
         // if one doesn't put the end index it'll return the rest of the words
68
         // after the beginning index. Else it'll just return 1 character in thid
68
         // after the beginning index. Else it'll just return 1 character in thid
69
-        // exercise 
69
+        // exercise.
70
         
70
         
71
         String c = s.substring(0,1).toUpperCase() + s.substring(1);
71
         String c = s.substring(0,1).toUpperCase() + s.substring(1);
72
         return c;
72
         return c;