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$ ```