8330686: Fix typos in the DatabaseMetaData javadoc

Reviewed-by: jpai, lancea, iris
This commit is contained in:
Jin Kwon 2024-04-27 01:11:33 +00:00 committed by Jaikiran Pai
parent aee91fbc70
commit aa2edd4913

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -1215,7 +1215,7 @@ public interface DatabaseMetaData extends Wrapper {
* Only procedure descriptions matching the schema and
* procedure name criteria are returned. They are ordered by
* {@code PROCEDURE_CAT}, {@code PROCEDURE_SCHEM},
* {@code PROCEDURE_NAME} and {@code SPECIFIC_ NAME}.
* {@code PROCEDURE_NAME} and {@code SPECIFIC_NAME}.
*
* <P>Each procedure description has the following columns:
* <OL>
@ -3289,7 +3289,7 @@ public interface DatabaseMetaData extends Wrapper {
* function name criteria are returned. They are ordered by
* {@code FUNCTION_CAT}, {@code FUNCTION_SCHEM},
* {@code FUNCTION_NAME} and
* {@code SPECIFIC_ NAME}.
* {@code SPECIFIC_NAME}.
*
* <P>Each function description has the following columns:
* <OL>
@ -3339,7 +3339,7 @@ public interface DatabaseMetaData extends Wrapper {
* parameter name criteria are returned. They are ordered by
* {@code FUNCTION_CAT}, {@code FUNCTION_SCHEM},
* {@code FUNCTION_NAME} and
* {@code SPECIFIC_ NAME}. Within this, the return value,
* {@code SPECIFIC_NAME}. Within this, the return value,
* if any, is first. Next are the parameter descriptions in call
* order. The column descriptions follow in column number order.
*
@ -3358,7 +3358,7 @@ public interface DatabaseMetaData extends Wrapper {
* <LI> functionColumnIn - IN parameter
* <LI> functionColumnInOut - INOUT parameter
* <LI> functionColumnOut - OUT parameter
* <LI> functionColumnReturn - function return value
* <LI> functionReturn - function return value
* <LI> functionColumnResult - Indicates that the parameter or column
* is a column in the {@code ResultSet}
* </UL>