From 2e380f8b26b1f18ce335becb76fe4b950e597b88 Mon Sep 17 00:00:00 2001 From: makwanajigneshm Date: Sat, 18 Mar 2017 12:05:31 -0400 Subject: [PATCH] Update CONTRIBUTING.md Correct procedure example. A minor first contribution --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 08ce43890..f0510415a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,7 @@ Changes are welcome from all members of the Community. * Snake case will be used. This separates keywords in names with underscores. `execute_test` * All names will be lower case. * Prefixes: - * Arguments to procedures and functions will start with `a_` an Example would be procedure `is_valid(a_owner_name varchar2(30));` + * Arguments to procedures and functions will start with `a_` an Example would be procedure `is_valid(a_owner_name varchar2);` * Object types and packages will start with `ut_` * Local variables `l_` * Global variables `g_`