From 7839793efff2ab40ee56b4dc4da9037a5debdfe8 Mon Sep 17 00:00:00 2001 From: rafa-ruiz Date: Thu, 5 Mar 2026 11:57:29 -0800 Subject: [PATCH] docs: align function syntax and cleanup docker config --- .dockerignore | 53 ------------------- .../chapter14_2.md | 2 +- 2 files changed, 1 insertion(+), 54 deletions(-) delete mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index b7acc73..0000000 --- a/.dockerignore +++ /dev/null @@ -1,53 +0,0 @@ -# Documentation -*.md -documentation/ - -# Build and dependency files -Makefile -*.pyc -__pycache__/ -*.egg-info/ -dist/ -build/ - -# Development and testing -.venv/ -venv/ -env/ -.pytest_cache/ -.coverage - -# Git and version control -.git/ -.gitignore -.gitattributes - -# IDE and editor files -.vscode/ -.idea/ -*.swp -*.swo -*~ -.DS_Store - -# Environment files -.env -.env.local -.env.*.local - -# Docker files (no copy Docker files into the image) -Dockerfile -docker-compose.yaml - -# CI/CD -.github/ -.gitlab-ci.yml - -# Temporary files -*.tmp -*.log -scratches/ - -# Node modules (if any) -node_modules/ -npm-debug.log diff --git a/docs/developer.avapframework.com/chapter14_2.md b/docs/developer.avapframework.com/chapter14_2.md index 7e2fc52..3b1b18c 100644 --- a/docs/developer.avapframework.com/chapter14_2.md +++ b/docs/developer.avapframework.com/chapter14_2.md @@ -1,6 +1,6 @@ ## Function Construction -In AVAP™, similar to Python, functions are defined using the keyword `def` , followed by the function name and its parameters in parentheses. The function definition ends with a colon ( `:` ), followed by the block of code that forms the function body, indented with four spaces. +In AVAP™, similar to Python, functions are defined using the keyword `function` , followed by the function name and its parameters in parentheses. The function definition ends with a ( `{` ), followed by the block of code that forms the function body, and closed by (`}`). ### Defining a function in AVAP™