From cf442d329d817ae3ceb97fa91720213d7e3521d2 Mon Sep 17 00:00:00 2001 From: Natalie Fiann Date: Fri, 20 Dec 2024 21:01:13 +0000 Subject: [PATCH] Added backticks to doc --- website/docs/docs/core/pip-install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/docs/core/pip-install.md b/website/docs/docs/core/pip-install.md index 6d94d92a64b..fa16ca13536 100644 --- a/website/docs/docs/core/pip-install.md +++ b/website/docs/docs/core/pip-install.md @@ -29,9 +29,9 @@ dbt-env\Scripts\activate # activate the environment for Windows #### Create an alias -To activate your dbt environment with every new shell window or session, you can create an alias for the source command in your $HOME/.bashrc, $HOME/.zshrc, or whichever config file your shell draws from. +To activate your dbt environment with every new shell window or session, you can create an alias for the source command in your `$HOME/.bashrc`, `$HOME/.zshrc`, or whichever config file your shell draws from. -For example, add the following to your rc file, replacing <PATH_TO_VIRTUAL_ENV_CONFIG> with the path to your virtual environment configuration. +For example, add the following to your rc file, replacing `` with the path to your virtual environment configuration. ```shell alias env_dbt='source /bin/activate'