From b4230571056dc76b493f3a220aeb1e0ae9a75ad8 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 12 Jul 2015 16:29:02 -0500 Subject: [PATCH] Add a few fixes to the latest til. --- postgres/edit-existing-functions.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/postgres/edit-existing-functions.md b/postgres/edit-existing-functions.md index 260a11b..9ca38a2 100644 --- a/postgres/edit-existing-functions.md +++ b/postgres/edit-existing-functions.md @@ -2,7 +2,7 @@ In the `psql` console, use `\ef` with the name of a function to fetch and open the definition of the function. The function will be opened in your -system `$EDITOR` in the form of the `create or replace function` query. +system `$EDITOR` in the form of a `create or replace function` query. Executing @@ -13,9 +13,9 @@ Executing will open the following in your default editor ```sql -CREATE OR REPLACE FUNCTION pg_catalog.now()¬ - RETURNS timestamp with time zone¬ - LANGUAGE internal¬ - STABLE STRICT¬ -AS $function$now$function$¬ +CREATE OR REPLACE FUNCTION pg_catalog.now() + RETURNS timestamp with time zone + LANGUAGE internal + STABLE STRICT +AS $function$now$function$ ```