@@ -173,14 +173,14 @@ public Response<LoginDetails> login(String emailId, String password) throws IOEx
173173 * Example:
174174 * <pre>
175175 * // Login with direct token
176- * Map<String, String> params = new HashMap<>();
177- * params.put("tfaToken", "123456");
178- * Response<LoginDetails> response = contentstack.login(email, password, params);
176+ * {@code Map<String, String> params = new HashMap<>();}
177+ * {@code params.put("tfaToken", "123456");}
178+ * {@code Response<LoginDetails> response = contentstack.login(email, password, params);}
179179 *
180180 * // OR login with MFA secret
181- * Map<String, String> params = new HashMap<>();
182- * params.put("mfaSecret", "YOUR_SECRET");
183- * Response<LoginDetails> response = contentstack.login(email, password, params);
181+ * {@code Map<String, String> params = new HashMap<>();}
182+ * {@code params.put("mfaSecret", "YOUR_SECRET");}
183+ * {@code Response<LoginDetails> response = contentstack.login(email, password, params);}
184184 * </pre>
185185 */
186186 public Response <LoginDetails > login (String emailId , String password , Map <String , String > params ) throws IOException {
@@ -691,8 +691,7 @@ public Builder setTimeout(int timeout) {
691691 * single-user application. The tuning parameters in this pool are
692692 * subject to change in future OkHttp releases. Currently, this pool
693693 * holds up to 5 idle connections which will be evicted after 5 minutes
694- * of inactivity.
695- * <p>
694+ * of inactivity
696695 * <p>
697696 * public ConnectionPool() { this(5, 5, TimeUnit.MINUTES); }
698697 *
0 commit comments