From 198fd763c6c94efda89d64b4830696e5e8964403 Mon Sep 17 00:00:00 2001 From: Martin Bauer <martin.bauer@fau.de> Date: Mon, 25 Sep 2017 14:40:14 +0200 Subject: [PATCH] Typos in documentation --- finitedifferences.py | 2 +- transformations.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/finitedifferences.py b/finitedifferences.py index 423b62064..e439dcce0 100644 --- a/finitedifferences.py +++ b/finitedifferences.py @@ -23,7 +23,7 @@ def grad(var, dim=3): def discretizeCenter(term, symbolsToFieldDict, dx, dim=3): """ Expects term that contains given symbols and gradient components of these symbols and replaces them - by field accesses. Gradients are replaced centralized approximations: + by field accesses. Gradients are replaced by centralized approximations: ``(upper neighbor - lower neighbor ) / ( 2*dx)`` :param term: term where symbols and gradient(symbol) should be replaced :param symbolsToFieldDict: mapping of symbols to Field diff --git a/transformations.py b/transformations.py index 2d4d1af24..74250d658 100644 --- a/transformations.py +++ b/transformations.py @@ -608,7 +608,7 @@ def get_type(node): def insert_casts(node): """ - Inserts casts and dtype where needed + Inserts casts and dtype whpere needed :param node: ast which should be traversed :return: node """ -- GitLab