From 62b07678d6ca2b65f8958f95fd57dbdc2ca58528 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Mon, 10 Oct 2022 11:40:25 -0700 Subject: [PATCH] Fix code fencing --- .../en/Java.Util/StringTokenizer.xml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/docs/Mono.Android/en/Java.Util/StringTokenizer.xml b/docs/Mono.Android/en/Java.Util/StringTokenizer.xml index ab00f80cfe..a112f567e0 100644 --- a/docs/Mono.Android/en/Java.Util/StringTokenizer.xml +++ b/docs/Mono.Android/en/Java.Util/StringTokenizer.xml @@ -211,7 +211,7 @@ Calculates the number of times that this tokenizer's - <code>nextToken</code> method can be called before it generates an + nextToken method can be called before it generates an exception. the number of tokens remaining in the string using the current delimiter set. @@ -253,10 +253,10 @@ System.Boolean - Returns the same value as the <code>hasMoreTokens</code> + Returns the same value as the hasMoreTokens method. - <code>true</code> if there are more tokens; - <code>false</code> otherwise. + true if there are more tokens; + false otherwise. @@ -293,9 +293,8 @@ Tests if there are more tokens available from this tokenizer's string. - <code>true</code> if and only if there is at least one token - in the string after the current position; <code>false</code> - otherwise. + true if and only if there is at least one token + in the string after the current position; false otherwise. @@ -391,9 +390,9 @@ - Returns the same value as the <code>nextToken</code> method, - except that its declared return value is <code>Object</code> rather than - <code>String</code>. + Returns the same value as the nextToken method, + except that its declared return value is Object rather than + String. the next token in the string.