소스 검색

java: corrected typo and documentation

Signed-off-by: Stefan Andritoiu <stefan.andritoiu@intel.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
Stefan Andritoiu 9 년 전
부모
커밋
021c003ca8
2개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1
    1
      examples/c++/otp538u.cxx
  2. 0
    2
      src/gas/gas.h

+ 1
- 1
examples/c++/otp538u.cxx 파일 보기

@@ -49,7 +49,7 @@ int main()
49 49
 
50 50
   // Instantiate a OTP538U on analog pins A0 and A1
51 51
   // A0 is used for the Ambient Temperature and A1 is used for the
52
-  // Object tempewrature.
52
+  // Object temperature.
53 53
   upm::OTP538U *temps = new upm::OTP538U(0, 1, OTP538U_AREF);
54 54
   
55 55
   // Output ambient and object temperatures

+ 0
- 2
src/gas/gas.h 파일 보기

@@ -87,8 +87,6 @@ class Gas {
87 87
 
88 88
         /**
89 89
          * Returns one sample from the sensor
90
-         *
91
-         * @param ctx Threshold context
92 90
          */
93 91
         virtual int getSample ();
94 92